Conversion From Decimal To Octal


 
 
Concept Explanation
 

Conversion From Decimal To Octal

Converting from Decimal to Octal (Division - Remainder Technique)

The base of a hexadecimal number is 8. The following four steps are used to convert a number from decimal to octal

  • Step 1 : Divide the decimal number to be converted by 8 that is the value of the new base.
  • Step 2 : Record the remainder from Step 1 as the rightmost digit (least significant digit) of the new base number.
  • Step 3 : Divide the quotient of the previous divide by 8 that is the value of the new base.
  • Step 4 : Record the remainder from Step 3 as the next digit (to the left) of the new base number.
  • Repeat Step 3 and 4, recording remainder from right to left, unit the quotient becomes zero in Step 3. note that the last remainder thus obtained will be the most significant digit (MSD) of the new base number.

    Illustration :1

    324_1_0=?_{8}

    Solution :

    The given number is with base 10 and we are converting to base 8

  • Step 1 and 2 : 324 / 8 = 40 and remainder 4
  • .... (More Text Available, Login?)
     
     


    Students / Parents Reviews [10]